home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / PRG / Prograph Reference Manual.sit / Prograph Reference Manual / Prograph Reference 5-7.rsrc / TEXT_164.txt < prev    next >
Text File  |  1995-10-25  |  4KB  |  155 lines

  1.  
  2.  I/O
  3.  
  4.  
  5. _________________________________________________
  6. ツ 
  7.                      accept     *284*
  8.  
  9.  
  10. Input names: [Title]
  11.  
  12. Input types: [string]
  13.  
  14. Defaults: Title = "Value"
  15.  
  16. Output names: Result
  17.  
  18. Output types: <any>
  19.  
  20. Description:     Value window with title Title is opened for editing, displaying the value NULL. If window is dismissed with the Cancel button, Result is NULL. Otherwise Result is the last value displayed.
  21.  
  22. Compiler: Not supported.
  23.  
  24. See also:  answer, answer-v, ask, select
  25.  
  26.  
  27. _________________________________________________
  28. ツ 
  29.                                         answer     *284*
  30.  
  31.  
  32. Input names: Prompt;  Button1;  [Button2;  [Button3]]
  33.  
  34. Input types: string;  <any>;  [<any>;  [<any>]]
  35.  
  36. Output names: ButtonClicked
  37.  
  38. Output types: <any>
  39.  
  40. Description:     Displays a modal dialog with a Prompt and 1, 2, or 3 horizontally arranged buttons labeled with text as specified by Button1 to Button3.  Prograph uses textual representations of Button1 to Button3 if they are not already strings.  The ButtonClicked output is the textual representation of the button clicked by the user.
  41.  
  42. See also:  accept, answer-v, ask, select
  43.  
  44.  
  45. _________________________________________________
  46. ツ 
  47.                                         answer-v     *285*
  48.  
  49.  
  50. Input names: Prompt;  Button1;  [Button2;  [Button3]]
  51.  
  52. Input types: string;  <any>;  [<any>;  [<any>]]
  53.  
  54. Output names: ButtonClicked
  55.  
  56. Output types: <any>
  57.  
  58. Description:     Displays a modal dialog with a Prompt and 1, 2, or 3 vertically arranged buttons labeled with text as specified by Button1 to Button3.  Prograph uses textual representations of Button1 to Button3 if they are not already strings.  The ButtonClicked output is the textual representation of the button clicked by the user.
  59. See also:  accept, answer, ask, select
  60.  
  61.  
  62. _________________________________________________
  63. ツ 
  64.                     ask     *285*
  65.  
  66.  
  67. Input names: [Prompt];  [DefaultValue]
  68.  
  69. Input types: [string];  [<any>]
  70.  
  71. Defaults: Prompt = "Enter value"; DefaultValue = ""
  72.  
  73. Output names: Value
  74.  
  75. Output types: <any>
  76.  
  77. Description:     A modal dialog is opened displaying the string Prompt, two buttons Cancel and OK, and an editable area containing DefaultValue, which cannot be a Macintosh type or an instance of a class. If dialog is dismissed with the Cancel button, Value is DefaultValue; otherwise Value is the last value displayed.
  78.  
  79. See also:  accept, answer, answer-v, select
  80.  
  81.  
  82. _________________________________________________
  83. ツ 
  84.                             display     *286*
  85.  
  86.  
  87. Input names: Value;  [Title]
  88.  
  89. Input types: <any>;  [string]
  90.  
  91. Defaults: Title = "Value"
  92.  
  93. Description:     Value window with title Title is opened, displaying Value, with editing disabled. 
  94.  
  95. Compiler: Not supported.
  96.  
  97. See also:  show
  98.  
  99.  
  100. _________________________________________________
  101. ツ 
  102.                                         print-window    *286*
  103.  
  104.  
  105. Input names:    Heading;  aWindow;  [Frame]
  106.  
  107. Input types: string;  Window;  [boolean]
  108.  
  109. Defaults:    Frame = FALSE
  110.  
  111. Description:     Heading is printed, followed by contents of aWindow. If Frame is TRUE, the rectangle outlining the window is printed.
  112.  
  113. See also:  print-text
  114.  
  115.  
  116. _________________________________________________
  117. ツ 
  118.                             select     *286*
  119.  
  120.  
  121. Input names: Strings;  [Prompt]
  122.  
  123. Input types: list;  [string]
  124.  
  125. Output names: SelectedString
  126.  
  127. Output types: string | null
  128.  
  129. Description:     A modal dialog is opened with a scrolling list showing Strings, and buttons Select and Cancel. If dialog is dismissed by Select button and a string was selected, then SelectedString is the selected string. Otherwise SelectedString is NULL.
  130. See also:  answer, answer-v, ask, accept
  131.  
  132.  
  133. _________________________________________________
  134. ツ 
  135.                                       set-dialog-font    *287*
  136.  
  137.  
  138. Input type:     Integer
  139.  
  140. Description:    Sets the font used for text in the dialogs used by the ask, answer, answer-v, select, and show primitives. If Font is 0, the System font is used.
  141.  
  142.  
  143. _________________________________________________
  144. ツ 
  145.                         show     *278*
  146.  
  147.  
  148. Input names: Item1;  [Item2;  ...]
  149.  
  150. Input types: <any>;  [<any>;  ...]
  151.  
  152. Description:     A modal dialog is opened displaying a string obtained by concatenating textual representations of Item1, 窶ヲ. Inputs cannot be instances of classes or Macintosh types.
  153.  
  154. See also:  display
  155.